home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / linuxcon.000 / linuxcon / linuxconf-1.6 / dialog / fcombo.h < prev    next >
C/C++ Source or Header  |  1996-07-31  |  560b  |  35 lines

  1. #pragma interface
  2. #ifndef FCOMBO_H
  3. #define FCOMBO_H
  4.  
  5. class ELM_STR: public ARRAY_OBJ{
  6. public:
  7.     char *value;
  8.     char *verbose;
  9.     /*~PROTOBEG~ ELM_STR */
  10. public:
  11.     ELM_STR (const char *_value, const char *_verbose);
  12.     ~ELM_STR (void);
  13.     /*~PROTOEND~ ELM_STR */
  14. };
  15.  
  16.  
  17. class ELM_STR_V: public ELM_STR{
  18. public:
  19.     char &selected;
  20.     /*~PROTOBEG~ ELM_STR_V */
  21. public:
  22.     ELM_STR_V (const char *_str, char &_selected);
  23.     /*~PROTOEND~ ELM_STR_V */
  24. };
  25.  
  26. class LIST_STR: public ARRAY{
  27.     /*~PROTOBEG~ LIST_STR */
  28. public:
  29.     ELM_STR *getitem (int no);
  30.     /*~PROTOEND~ LIST_STR */
  31. };
  32.  
  33. #endif
  34.  
  35.